home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
20
/
9
/
DISK2092.ZIP
/
RBBS-LIT.ZIP
/
LIT
/
ASMANSI.LIT
< prev
next >
Wrap
Text File
|
1990-01-17
|
1KB
|
37 lines
*[ASMANSI.LIT]****************************************************************
* Description: Removes ANSI character support and uses BASIC for writes. *
* RBBS-PC Level: CPC17.3 √ AM *
* Module Affected: RBBSSUB2.BAS *
* Selection Option: ASMANSI = OFF *
* Additional files: None *
******************************************************************************
1480 SUB LPrnt (Strng$,NumReturns) STATIC
IF NOT ZSnoop THEN _
EXIT SUB
CALL PScrn (Strng$)
IF ZVoiceType <> 0 AND ZTalkAll THEN _
CALL Talk (65,Strng$)
FOR WasI = 1 TO NumReturns
PRINT
NEXT
END SUB
1482 SUB QuickLPrnt (Strng$,Num) STATIC
IF ZSnoop THEN _ ' KG011101
LOCATE ,1,1 : _ ' KG011101
CALL Pscrn (Strng$ + STR$(Num)) ' KG011101
END SUB
1483 SUB PScrn (Strng$) STATIC
IF Strng$ = "" THEN _
EXIT SUB
PRINT Strng$;
END SUB
1485 SUB SkipLine (NumReturns) STATIC
FOR WasI=1 TO NumReturns
CALL PutCom (ZReturnLineFeed$)
NEXT
IF NOT ZSnoop THEN _
GOTO 1486
FOR WasI = 1 TO NumReturns
PRINT
NEXT